* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  
}



.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 70px;
  background: linear-gradient(120deg, #020617, #0b1120);
}

.hero h2 {
  font-size: 46px;
  line-height: 1.2;
}

.hero span {
  color: #38bdf8;
}

.hero p {
  max-width: 520px;
  margin-top: 18px;
  color: #cbd5f5;
}

.hero button {
  margin-top: 30px;
  padding: 14px 34px;
  border: none;
  border-radius: 30px;
  background: #38d8f8;
  color: #020617;
  font-weight: 600;
  cursor: pointer;
}

section {
  padding: 90px 70px;
}

section h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #f8fafc;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: #FFF8DE;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}


footer {
  text-align: center;
  padding: 30px;
  background: #020617;
  color: #94a3b8;
}

/* TEAM SECTION */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.team-card {
  background: #FFF8DE;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.team-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #38bdf8;
}

.team-card h3 {
  margin-top: 10px;
  color: #FFF8DE;
}

.chair {
  grid-column: span 2;
}

/* EVENTS */
.event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.event {
  background: #F5F2F2;
  padding: 18px 22px;
  border-radius: 14px;
  border-left: 4px solid #38bdf8;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.event:hover {
  background: #BFC6C4;
}

h2 {
  text-align: center;
  color: #0047AB; /* IEEE blue */
  margin-top: 40px;
  margin-bottom: 20px;
}

.team-section {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
  margin-top: 20px;
}

.member-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.member-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.member-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #0047AB;
}

.member-card p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #fff;
}

.member-card a {
  color: #0077B5; /* LinkedIn Blue */
  text-decoration: none;
  font-size: 18px;
  margin: 0 5px;
  transition: color 0.3s;
}

.member-card a:hover {
  color: #005582;
}